home *** CD-ROM | disk | FTP | other *** search
/ New Masters of Flash / New Masters of Flash.iso / pc / MOVIES / scripts.cst / 00025_Script_devs < prev    next >
Text File  |  2000-09-30  |  194b  |  11 lines

  1. global x
  2.  
  3. on exitFrame
  4.   if the frameLabel contains "new" then
  5.     set x = x + 1
  6.     set x = integer(x)
  7.     
  8.     if x < 10 then set x = "0"&x
  9.     set the framelabel = "m"&x
  10.   end if
  11.